/* Import Merriweather Font */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap');





/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.5;
  padding-top: 100px;
}

/* Header Styles - NEW CLASS NAMES */
.nav-topbar {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* border-bottom: 2px solid #0b7c7a; */
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-topbar.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover img {
  transform: scale(1.05);
}

/* Main Navigation */
.main-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0b7c7a, #0a5fd8);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-menu a:hover::after,
.main-menu a.current-page::after {
  width: 100%;
}

.main-menu a:hover,
.main-menu a.current-page {
  color: #0b7c7a;
}

/* Dropdown Menu */
.menu-dropdown {
  position: relative;
}

.menu-dropdown>a {
  cursor: pointer;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
}

.menu-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li {
  list-style: none;
}

.dropdown-list a {
  padding: 14px 24px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-list a:last-child {
  border-bottom: none;
}

.dropdown-list a:hover {
  background: linear-gradient(135deg, #0b7c7a, #0a5fd8);
  color: #ffffff;
  transform: translateX(8px);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #0b7c7a, #0a5fd8);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 20px rgba(11, 124, 122, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0a5fd8, #0b7c7a);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(10, 95, 216, 0.4);
}

/* Hamburger Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #000000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  padding: 100px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-panel.active {
  right: 0;
}

.mobile-panel ul {
  list-style: none;
}

.mobile-panel li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.mobile-panel.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel.active li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-panel.active li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-panel.active li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-panel.active li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-panel.active li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-panel.active li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-panel a {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.mobile-panel a:hover {
  color: #0b7c7a;
  padding-left: 20px;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Active Link Styles */
.main-menu a.current-page {
  color: #0b7c7a !important;
}

.main-menu a.current-page::after {
  width: 100% !important;
}

.mobile-panel a.current-page {
  color: #0b7c7a;
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(11, 124, 122, 0.1), transparent);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .main-menu ul {
    gap: 1.5rem;
  }

  .main-menu a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 80px;
    padding: 0 1rem;
  }

  .site-logo img {
    height: 55px;
  }

  .main-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions {
    gap: 12px;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .nav-container {
    padding: 0 0.8rem;
    height: 75px;
  }

  .site-logo img {
    height: 50px;
  }

  .header-actions {
    gap: 8px;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 13px;
  }

  .mobile-panel {
    width: 100%;
    padding: 90px 20px 20px;
  }
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}

body {
  font-family: 'Merriweather', serif;
  padding: 0;
}

/* Hero Section */
.heroSection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 8px;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, #24ccfb, #9940fe);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Text Section */
.textSection {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 4em;
  animation: fadeUp 1.2s ease-out forwards;
}

.textSection h2 {
  font-size: clamp(28px, 5vw, 35px);
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
}

.textSection p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  width: 92%;
}

/* Buttons */
.dual-btn-container {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-family: 'Merriweather', serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  color: #fff;
}

/* Primary Button */
.btn-primary {
  background: #24ccfb;
}

.btn-primary:hover {
  background: #9940fe;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(153, 64, 254, 0.3);
}

/* Secondary Button */
.btn-secondary {
  background: #9940fe;
}

.btn-secondary:hover {
  background: #24ccfb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.imageSection {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em;
  position: relative;
}

/* Circles */
.bigCircle {
  position: relative;
  height: 450px;
  width: 450px;
  background: linear-gradient(to bottom right, #FCDCEF, #58EAFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bigCircle 2s infinite alternate ease-in-out;
}

.smallCircle {
  height: 310px;
  width: 300px;
  background: linear-gradient(to bottom right, #FFA3FD, #58EAFF);
  border-radius: 50%;
  animation: smallCircle 3s infinite alternate ease-in-out;
}

.hero-img {
  position: absolute;
  width: 400px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bigCircle {
  0% {
    transform: translateY(2px) translateX(1px);
  }

  50% {
    transform: translateY(8px) translateX(4px);
  }

  100% {
    transform: translateY(10px) translateX(1px);
  }
}

@keyframes smallCircle {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


@media (max-width: 1024px) {
  .heroSection {
    min-height: 75vh;
  }

  .textSection {
    padding: 3em;
  }

  .textSection h2 {
    font-size: 30px;
  }

  .textSection p {
    width: 100%;
    font-size: 14px;
  }

  .bigCircle {
    height: 380px;
    width: 380px;
  }

  .smallCircle {
    height: 260px;
    width: 260px;
  }

  .hero-img {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .heroSection {
    flex-direction: column;
    text-align: center;
    padding: 2em 1.5em;
  }

  .textSection {
    align-items: center;
    padding: 2.5em 1.5em;
  }

  .textSection p {
    text-align: center;
  }

  .dual-btn-container {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .imageSection {
    padding: 2em 0;
  }

  .bigCircle {
    height: 320px;
    width: 320px;
  }

  .smallCircle {
    height: 220px;
    width: 220px;
  }

  .hero-img {
    width: 280px;
  }
}

@media (max-width: 360px) {
  .heroSection {
    padding: 1.5em 1em;
  }

  .textSection {
    padding: 5em 1em;
    gap: 16px;
  }

  .textSection h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .textSection p {
    font-size: 13px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 16px;
  }

  .bigCircle {
    height: 260px;
    width: 260px;
  }

  .smallCircle {
    height: 180px;
    width: 180px;
  }

  .hero-img {
    width: 220px;
  }
}




/* About Section - Enhanced Responsive with Merriweather */
/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap'); */

.yoga-about {
  margin: 0;
  padding: 6em 3em;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  font-family: 'Merriweather', serif;
  color: #000;
  overflow: hidden;
}

.yoga-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  gap: 60px;
  /* visible by default */
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

/* Optional animation trigger */
.yoga-container.fade-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease-out forwards;
}

.yoga-image {
  /* flex: 1 1 450px; */
}

.yoga-image img {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(137, 43, 226, 0.205);
}

.yoga-content {
  flex: 1 1 500px;
}

.yoga-content h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #9940fe;
  margin-bottom: 15px;
}

.yoga-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 25px;
}

.yoga-content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  color: #000000;
  margin-bottom: 25px;
}

.yoga-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  justify-content: flex-start;
}

.yoga-stats div {
  flex: 1 1 120px;
  text-align: center;
  background: linear-gradient(135deg, #24ccfb20, #9940fe20);
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.yoga-stats div:hover {
  transform: scale(1.05);
}

.yoga-stats strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #9940fe;
  margin-bottom: 8px;
  animation: counterFade 1s ease forwards;
}

.yoga-stats span {
  font-size: 15px;
  color: #000000;
  font-weight: 400;
}

@keyframes counterFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.yoga-button {
  display: inline-block;
  background: linear-gradient(135deg, #24ccfb, #9940fe);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(36, 204, 251, 0.3);
}

.yoga-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.yoga-button:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(153, 64, 254, 0.4);
  background: linear-gradient(135deg, #9940fe, #24ccfb);
}

.yoga-button:hover::before {
  left: 100%;
}

/* Scroll-triggered Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .yoga-about {
    padding: 4.5em 2.5em;
  }

  .yoga-container {
    gap: 50px;
  }

  .yoga-image img {
    height: 450px;
  }

  .yoga-content h2 {
    font-size: 28px;
  }

  .yoga-content h3 {
    font-size: 19px;
  }

  .yoga-content p {
    font-size: 14px;
  }

  .yoga-stats {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .yoga-about {
    padding: 3em 2em;
  }

  .yoga-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .yoga-image img {
    height: 380px;
  }

  .yoga-stats {
    justify-content: center;
    gap: 20px;
  }

  .yoga-stats div {
    flex: 1 1 160px;
  }

  .yoga-content p {
    text-align: center;
  }

  .yoga-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}


@media (max-width: 360px) {
  .yoga-about {
    padding: 2em 1.25em;
  }

  .yoga-image img {
    height: 300px;
  }

  .yoga-content h2 {
    font-size: 24px;
  }

  .yoga-content h3 {
    font-size: 18px;
  }

  .yoga-content p {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .yoga-stats {
    gap: 15px;
  }

  .yoga-stats div {
    flex: 1 1 100%;
  }

  .yoga-stats strong {
    font-size: 22px;
  }

  .yoga-button {
    width: 100%;
    max-width: 260px;
    padding: 12px 22px;
    font-size: 15px;
  }
}



/* Classes Section - Smooth Zoom-In Scroll Animations */
/* @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap'); */

.classes-section {
  margin: 0;
  padding: 3em 3em 3em 3em;
  background: linear-gradient(95deg, #9940fe, #24ccfb);
  font-family: 'Merriweather', serif;
  color: #000;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

/* TITLE */
.section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
  color: #ffffff;
  /* visible by default */
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.section-title.zoom-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* GRID */
.classes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

/* CARD */
.class-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* visible by default */
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0deg);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Zoom-in effect when class is added */
.class-card.zoom-in {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0deg);
}

/* Staggered delays */
.class-card.zoom-in:nth-child(1) {
  transition-delay: 0.2s;
}

.class-card.zoom-in:nth-child(2) {
  transition-delay: 0.4s;
}

.class-card.zoom-in:nth-child(3) {
  transition-delay: 0.6s;
}

.class-card.zoom-in:nth-child(4) {
  transition-delay: 0.8s;
}

.class-card.zoom-in:nth-child(5) {
  transition-delay: 1s;
}

.class-card.zoom-in:nth-child(6) {
  transition-delay: 1.2s;
}

.class-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(153, 64, 254, 0.3);
}

/* IMAGE */
.class-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.class-info {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.class-info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 12px;
}

.class-meta {
  font-size: 15px;
  color: #9940fe;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.class-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  color: #000000;
  margin-bottom: auto;
}



@media (max-width: 1024px) {
  .classes-section {
    padding: 3em 2.5em;
  }

  .section-title {
    font-size: 28px;
  }

  .classes-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .class-card img {
    height: 260px;
  }

  .class-info h3 {
    font-size: 19px;
  }

  .class-desc {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .classes-section {
    padding: 2.5em 2em;
  }

  .section-title {
    font-size: 24px;
  }

  .classes-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .class-card img {
    height: 230px;
  }

  .class-info {
    padding: 22px;
  }

  .class-info h3 {
    font-size: 18px;
  }

  .class-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .class-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 22px;
  }
}

@media (max-width: 360px) {
  .classes-section {
    padding: 2em 1.25em;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .classes-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .class-card img {
    height: 190px;
  }

  .class-info {
    padding: 18px;
  }

  .class-info h3 {
    font-size: 17px;
  }

  .class-desc {
    font-size: 13px;
  }

  .class-btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 18px;
  }
}






/* SERVICES SECTION - FIXED STICKY BACKGROUND */
.services-section {
  margin: 0;
  padding: 6em 3em;
  min-height: 80vh;
  background:
    /* Dark overlay */
    linear-gradient(rgba(0, 0, 0, 0.521), rgba(0, 0, 0, 0.534)),
    /* Subtle gradient accents */
    radial-gradient(circle at 20% 80%, rgba(36, 204, 251, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(153, 64, 254, 0.15) 0%, transparent 50%),
    /* Fixed background image */
    url('../images/y10.jpg') center/cover fixed;

  font-family: 'Merriweather', serif;
  color: #ffffff;
  /* White text for contrast */
  position: relative;
  overflow: hidden;

  /* ✅ IMMEDIATELY VISIBLE */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* CONTENT CONTAINER - Above background */
.services-section>* {
  position: relative;
  z-index: 2;
}

/* HEADER */
.services-section .header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.services-section h1 {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.divider {
  flex: 1;
  max-width: 70px;
}

.divider span {
  display: block;
  height: 4px;
  background: linear-gradient(to right, transparent, #24ccfb, #9940fe, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(36, 204, 251, 0.6);
}

/* ENHANCED GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

/* SERVICE CARDS - GLASSMORPHISM WITH WHITE TEXT */
.services-grid .card {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  color: #000000;

  /* ✅ FULLY VISIBLE */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}


/* CARD SHIMMER EFFECT */
.services-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3));
  transition: left 0.8s ease;
}

.services-grid .card:hover::before {
  left: 100%;
}

/* CARD HOVER EFFECTS */
.services-grid .card:hover {
  transform: translateY(-15px) scale(1.03);
  background: linear-gradient(135deg, #24ccfb, #9940fe);
  color: white;
  border: 2px solid rgba(36, 204, 251, 0.7);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(36, 204, 251, 0.4);
}

/* ICON */
.services-grid .icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #000000;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
}

.services-grid .card:hover .icon {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 15px 35px rgba(36, 204, 251, 0.8));
}

/* TOPIC (h3) */
.services-grid h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.services-grid .card:hover h3 {
  color: #ffffff;


  /* .services-grid p{ */

}

/* CONTENT (p) */
.services-grid p {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.95);
  margin-bottom: 28px;
}

/* FOCUS STATES */
.services-grid .card:focus-within,
.services-grid .btn:focus {
  outline: 3px solid #24ccfb;
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .services-section {
    padding: 5em 2.5em;
  }

  .services-section h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .services-grid .card {
    padding: 25px 22px;
  }

  .services-grid h3 {
    font-size: 18px;
  }

  .services-grid p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3.5em 2em;
    background-attachment: scroll;
    /* mobile performance */
  }

  .services-section h1 {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 520px;
  }

  .services-grid .card {
    padding: 30px 25px;
  }

  .services-grid h3 {
    font-size: 17px;
  }

  .services-grid p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 360px) {
  .services-section {
    padding: 3em 1.25em;
  }

  .services-section h1 {
    font-size: 21px;
    line-height: 1.4;
  }

  .services-grid {
    gap: 24px;
  }

  .services-grid .card {
    padding: 24px 20px;
  }

  .services-grid .icon {
    font-size: 36px;
  }

  .services-grid h3 {
    font-size: 16px;
  }

  .services-grid p {
    font-size: 13px;
  }
}









/*team*/
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap');

/* TEAM SECTION - 1 ROW 4 BLOCKS */
.team-section {
  margin: 0;
  padding: 0em 3em 6em 3em;
  background: #ffffff;
  font-family: 'Merriweather', serif;
  position: relative;
  overflow: hidden;
}

/* SMOOTH SCROLL FADE-UP */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-section {
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* BACKGROUND EFFECTS */
.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(36, 204, 251, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(153, 64, 254, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* TITLE - 35px */
.team-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
  margin-bottom: 1em;
}

/* 1 ROW 4 BLOCKS - NO WRAP */
.team-container {
  display: flex;
  justify-content: space-evenly;
  /* Perfect 4-block spacing */
  flex-wrap: nowrap;
  /* CRITICAL: 1 ROW ONLY */
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
  /* Equal height cards */
}

/* PERFECT 4 BLOCKS */
.team-card {
  background: #ffffff;
  width: 23%;
  /* Exactly 4 equal blocks */
  min-width: 260px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  flex: 0 1 23%;
  /* Fixed width, no grow/shrink */
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(36, 204, 251, 0.1), transparent);
  transition: left 0.8s ease;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 35px 70px rgba(36, 204, 251, 0.25);
}

/* IMAGE */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 280px;
  margin-bottom: 25px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .image-wrapper img {
  transform: scale(1.12);
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(36, 204, 251, 0.95), rgba(153, 64, 254, 0.95));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .overlay {
  opacity: 1;
}

/* SOCIAL BUTTONS */
.social-icons {
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.team-card:hover .social-icons {
  transform: translateY(0);
}

.social-icons a {
  color: #fff;
  background: linear-gradient(135deg, #24ccfb, #9940fe);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(36, 204, 251, 0.3);
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.2);
  box-shadow: 0 12px 30px rgba(36, 204, 251, 0.5);
  background: linear-gradient(135deg, #9940fe, #24ccfb);
}

/* SUBTOPIC - 25px */
.member-info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin: 0 0 10px 0;
  transition: color 0.4s ease;
}

.team-card:hover .member-info h3 {
  color: #24ccfb;
}

/* CONTENT - 15px */
.member-info p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* RESPONSIVE - BREAKS TO 2→1 COLUMNS */
@media (max-width: 1200px) {
  .team-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-card {
    width: 45%;
    flex: 1 1 45%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 2em 1.5em;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .team-card {
    width: 100%;
    max-width: 400px;
  }

  .team-section h2 {
    font-size: 28px;
    margin-bottom: 2.5em;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 1.5em 1em;
  }

  .team-section h2 {
    font-size: 20px;
  }

  .image-wrapper {
    height: 250px;
  }
}

/* STAGGERED ANIMATIONS */
.team-card:nth-child(1) {
  animation-delay: 0.1s;
}

.team-card:nth-child(2) {
  animation-delay: 0.2s;
}

.team-card:nth-child(3) {
  animation-delay: 0.3s;
}

.team-card:nth-child(4) {
  animation-delay: 0.4s;
}





/* TESTIMONIAL SECTION - IMMEDIATELY VISIBLE */
.testimonial-section {
  margin: 0;
  padding: 3em 3em;
  background: #ffffff;
  font-family: 'Merriweather', serif;
  color: #000;
  overflow: hidden;
  position: relative;

  /* ✅ IMMEDIATELY VISIBLE - FORCE SHOW */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: block !important;
}

.testimonial-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.testimonial-title {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #9940fe;
  margin-bottom: 15px;
}

/* SUBTITLE */
.testimonial-subtitle {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
}

/* SLIDER */
.testimonial-slider {
  width: 100%;
  max-width: 1500px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 3em 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slide-loop 25s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

/* CONTINUOUS LOOP ANIMATION */
@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  width: 420px;
  background: linear-gradient(135deg, #24ccfb, #9940fe);
  padding: 3em 2em;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-align: left;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(36, 204, 251, 0.3);

  /* ✅ FULLY VISIBLE */
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: block !important;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 30px 80px rgba(153, 64, 254, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

/* QUOTE MARK */
.quote-mark {
  font-size: 45px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 0;
  margin-bottom: 25px;
  display: block;
}

/* TESTIMONIAL TEXT */
.testimonial-text {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
  min-height: 20px;
}

/* PATIENT PROFILE */
.patient-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.patient-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.patient-meta h4 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.patient-meta span {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE - TABLET 768px */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 3em 2em;
  }

  .testimonial-card {
    width: 100%;
    max-width: 450px;
  }

  .testimonial-track {
    gap: 25px;
  }
}

/* RESPONSIVE - MOBILE 375px */
@media (max-width: 375px) {
  .testimonial-section {
    padding: 3em 1.5em;
  }

  .testimonial-card {
    width: 100%;
    padding: 2em 1.5em;
  }

  .testimonial-track {
    gap: 20px;
  }
}




/* 1.pricing plan */
/* 1. Pricing Plan */
* {
  margin: 0;
  padding: 0;
  /* fixed missing value */
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
  width: 100%;
  max-width: 1500px;
  /* padding: 3em; added uniform padding top/bottom/left/right */
}

.topic {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #9940fe;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 0;
}

.subtopic {
  font-size: 20px;
  color: black;
  font-weight: 600;
  line-height: 1.5;
}

.content {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #000000;
}

/* 2. Grid & Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em 5em;
  max-width: 1500px;
  padding: 6em 3em;
  margin: 0 auto;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-group {
  flex: 1;
}

/* Dotted Leader Line */
.price-item::after {
  content: "";
  flex: 1;
  border-bottom: 2px dotted #ccc;
  margin: 0 20px;
  align-self: center;
  margin-top: 10px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #24ccfb;
  margin-right: 20px;
}

/* 3. Button & Animations */
.cta-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(45deg, #24ccfb, #9940fe);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
}

.cta-btn:hover {
  background-position: right center;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(153, 64, 254, 0.4);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Responsive Breakpoints */

/* Tablet View (768px) */
@media (max-width: 768px) {
  body {
    padding: 0em 0em;
    /*keep left/right padding consistent */
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .topic {
    font-size: 30px;
  }
}

/* Mobile View (375px) */
@media (max-width: 375px) {
  body {
    padding: 0em 0em;
    /* left/right padding tightened but still consistent */
  }

  .topic {
    font-size: 26px;
  }

  .subtopic {
    font-size: 20px;
  }

  .content {
    font-size: 13px;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .price-item::after {
    display: none;
  }

  .price {
    margin: 10px 0;
    font-size: 20px;
  }

  .cta-btn {
    width: 100%;
  }
}